home *** CD-ROM | disk | FTP | other *** search
/ PC User 2002 April / Disc 2 / PCUSER0402D2.iso / software / utils / files / wincron.exe / data1.cab / Sample_Scripts / bug_01.tg < prev    next >
Encoding:
Text File  |  2001-10-20  |  423 b   |  11 lines

  1. ## bug_01: double_tick_test    
  2. # jobs that execute very quickly (like the simple print statement below) were exhibiting 
  3. # the nasty habit of executing more than once per tick cycle.
  4. # We solved this by setting a flag on the job indicating that it has been 'seen' in this 
  5. # tick cycle, and should be ignored for the remainder of this tick cycle.
  6. {
  7.     -name double_tick_test
  8.     -start    
  9.     -action -print "Hello World!"
  10. }
  11.